/* Hero Section */
.hero-section--company {
    background-image: url('/01 querensys/img/company-hero.webp');
  }
  
  /* About Section */
  .about-section {
    padding: 2rem 1.5rem;
    background-color: #fff;
    background-image: url('/01 querensys/img/about_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
    width: 100%;
  }
  
  .about-section__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    position: relative;
  }
  
  .about-section__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: left;
    width: 100%;
    position: relative;
  }
  
  .about-section__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
    flex: 1 1 auto;
    z-index: 2;
  }
  
  .about-section__text-block,
  .about-section__text {
    font-size: 2rem;
    color: var(--color-gray-900);
    line-height: 180%;
    letter-spacing: -0.04em;
  }
  
  .about-section__text-block {
    text-align: left;
    flex: 0 0 auto;
  }
  
  .about-section__text {
    text-align: center;
  }
  
  .about-section__text strong,
  .about-section__text-block strong {
    font-weight: 700;
  }
  
  .about-section__image-wrapper {
    width: 100%;
    flex: 1 1 auto;
    margin-top: 2rem;
  }
  
  .about-section__main-img,
  .about-section__image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
  }
  
  .about-section__image {
    margin: 0 auto;
  }
  
  .about-section__decoration {
    position: absolute;
    top: 50%;
    right: -4rem;
    transform: translateY(-50%);
    z-index: 3;
    margin-left: 2rem;
    flex-shrink: 0;
  }
  
  .about-section__decoration img,
  .about-section__graphic img {
    width: 18rem;
    height: auto;
    display: block;
  }
  
  .about-section__graphic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(30%, -50%);
    z-index: 1;
  }
  
  /* Vision Section */
  .vision-section {
    background-image: url('/01 querensys/img/vision_bg.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 1.5rem;
    text-align: center;
    height: 45rem;
    width: 100%;
    margin: 2rem 0;
    border-radius: 1.5rem;
  }
  
  .vision-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
  
  .vision-section__label {
    color: #888;
    margin-bottom: 1rem;
  }
  
  .vision-section__title {
    padding: 1rem 2.25rem;
    border: 1px solid var(--color-primary-300);
    border-radius: 1.75rem;
    display: inline-block;
    background: var(--color-white);
    color: #153D58;
  }
  
  .vision-section__title span {
    color: var(--color-primary-900);
  }
  
  .vision-section__divider {
    width: 1px;
    height: 52px;
    background-color: #ccc;
    margin: 2rem auto;
  }
  
  .vision-section__description {
    color: var(--color-gray-900);
  }
  
  /* Core Value Section */
  .core-value-section {
    padding: 6rem 1.5rem;
    background-color: #fff;
    text-align: center;
    max-width: 1240px;
    width: 100%;
  }
  
  .core-value-section__inner {
    width: 100%;
    margin: 0 auto;
  }
  
  .core-value-section__title {
    color: #888;
    margin-bottom: 3rem;
    text-align: left;
  }
  
  .core-value-section__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    justify-content: space-between;
    margin-bottom: 1.75rem;
  }
  
  .core-card,
  .core-card-blue {
    flex: 1 1 calc(33.333% - 1.1667rem);
    max-width: calc(33.333% - 1.1667rem);
    padding: 2rem;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    text-align: left;
    position: relative;
  }
  
  .core-card {
    background-color: var(--color-gray-000);
  }
  
  .core-card-blue {
    background-color: var(--color-primary-100);
  }
  
  .core-card__icon {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-left: auto;
    margin-bottom: 1.25rem;
  }
  
  .core-card__caption {
    color: #666;
    margin-bottom: 0.25rem;
  }
  
  .core-card__title {
    color: #111;
    font-weight: 700;
  }
  
  .core-card-gray-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.75rem;
  }
  
  .core-card-gray-wrapper .core-card {
    width: calc(50% - 0.875rem);
  }
  
  /* Core Value Summary */
  .core-value-section__summary {
    position: relative;
    background-color: var(--color-primary-900);
    color: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    height: 15rem;
    line-height: 1.8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    z-index: 0;
  }
  
  .core-value-section__summary::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/01 querensys/img/summary_texture.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
  }
  
  .core-value-section__summary p {
    line-height: 160%;
  }
  
  .core-value-section__summary strong {
    font-weight: 600;
  }
  
  /* ========== Mobile ========== */
  @media (max-width: 768px) {
    .company-hero__title {
      font-size: 1.75rem;
    }
  
    .about-section {
      background-image: none;
    }
  
    .about-section__inner {
      flex-direction: column;
      align-items: center;
      padding: 2rem 0 3rem;
      gap: 2rem;
    }
  
    .about-section__text-block {
      font-size: 1.5rem;
      text-align: center;
      width: 100%;
    }
  
    .about-section__group {
      gap: 1rem;
    }
  
    .about-section__decoration {
      top: 58%;
      right: -10%;
      position: absolute;
      order: 1;
    }
  
    .about-section__decoration img {
      width: 11rem;
    }
  
    .about-section__image-wrapper {
      order: 3;
      width: 100%;
    }
  
    .about-section__main-img {
      max-width: 100%;
      margin: 0 auto;
    }
  
    .about-section__graphic {
      right: 0;
      bottom: 0;
      transform: translate(30%, 30%);
      z-index: 1;
    }
  
    .vision-section {
      padding: 4rem 1.5rem;
      margin: 0 auto;
      height: 40rem;
    }
  
    .vision-section__label {
      margin-bottom: 0.75rem;
    }
  
    .vision-section__title {
      font-size: 1.5rem;
      padding: .75rem 1.5rem;
      border-radius: .75rem;
    }
  
    .vision-section__description {
      font-size: .875rem;
    }
  
    .vision-section__divider {
      margin: 1.5rem auto;
    }
  
    .core-card__caption {
      font-size: .875rem;
    }
  
    .core-card__title {
      font-size: 1.5rem;
    }

    .core-value-section__title {
        margin-bottom: 1rem;
    }

    .core-card__icon, .core-card__icon img {
        width: 72px;
        height: 72px;
    }

    .core-value-section{
        padding: 4rem 0rem;
    }
  
    .core-value-section__summary {
      font-size: 1.25rem;
    }
  
    .core-card-gray-wrapper,
    .core-value-section__cards {
      flex-direction: column;
      align-items: center;
    }

    .core-value-section__cards{
        gap: 1rem !important;
        margin-bottom: 1rem;
    }
  
    .core-card,
    .core-card-blue,
    .core-card-gray-wrapper .core-card {
      width: 100%;
      max-width: 100% !important;
      align-items: center;
      text-align: center;
    }
  
    .core-card__icon {
      justify-content: center;
      margin: 0 auto 1.25rem;
    }
  
    .core-card__text {
      align-items: center;
    }
  }
  
  /* ========== Tablet ========== */
  @media (max-width: 1024px) {
    .core-value-section__cards {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.75rem;
      align-items: center;
    }
  
    .core-card {
      flex: 1 1 calc(50% - 0.875rem);
      max-width: calc(50% - 0.875rem);
    }
  
    .core-card-blue,
    .core-card-blue-wrapper .core-card-blue {
      flex: 1 1 100%;
      max-width: 100%;
      align-items: center;
      text-align: center;
    }
  
    .core-card-blue .core-card__icon,
    .core-card-blue-wrapper .core-card__icon {
      justify-content: center;
      margin: 0 auto 1.25rem;
    }
  
    .core-card-blue .core-card__text,
    .core-card-blue-wrapper .core-card__text {
      align-items: center;
    }
  
    .core-card-blue-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
    }
  
    .core-value-section__summary {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
  }